ObjectPreview

data class ObjectPreview(type: String, subtype: String?, description: String?, overflow: Boolean, properties: List<PropertyPreview>, entries: List<EntryPreview>?)

Object containing abbreviated remote object value.

Constructors

ObjectPreview
Link copied to clipboard
fun ObjectPreview(type: String, subtype: String? = null, description: String? = null, overflow: Boolean, properties: List<PropertyPreview>, entries: List<EntryPreview>? = null)

Properties

description
Link copied to clipboard
val description: String? = null
String representation of the object.
entries
Link copied to clipboard
val entries: List<EntryPreview>? = null
List of the entries.
overflow
Link copied to clipboard
val overflow: Boolean
True iff some of the properties or entries of the original object did not fit.
properties
Link copied to clipboard
val properties: List<PropertyPreview>
List of the properties.
subtype
Link copied to clipboard
val subtype: String? = null
Object subtype hint.
type
Link copied to clipboard
val type: String
Object type.

Sources

jvm source
Link copied to clipboard